ObservableBase class¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.ObservableBase<T>
Modifiers: public abstract
Summary¶
Abstract base class for implementations of the IObservable interface.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class ObservableBase~T~
class IObservable~T~ {
<>
}
IObservable~T~ <|.. ObservableBase~T~
Implements: IObservable
Remarks¶
If you don't need a named type to create an observable sequence (i.e. you rather need
an instance rather than a reusable type), use the Observable.Create method to create
an observable sequence with specified subscription behavior.
Constructors¶
| Name | Summary |
|---|---|
| .ctor |
Methods¶
| Name | Summary |
|---|---|
| Subscribe | Subscribes the given observer to the observable sequence. |
| SubscribeCore | Implement this method with the core subscription logic for the observable sequence. |